/*modal 提示框*/
.tipsModal {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    font-family: FreightText W01 Bold !important;
    display:none;
}

.tipsModal .mask {
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.5;
}

.tipsModal .modal-wrapper {
    width: 90%;
    background: #ffffff;
    position: absolute;
    z-index: 9999;
    top: 30%;
    left: 5%;
}

.modal-wrapper .modal-header {
    height: 40px;
    position: relative;
}

.modal-wrapper .header-close {
    position: absolute;
    display: inline-block;
    top: 12px;
    right: 12px;
    width: 18px;
    height: 20px;
    background: url('/static/images/desktop/sg_starr/icon-close.png') no-repeat center center;
    background-size: 16px 16px;
}

.modal-content {
    padding: 0 20px;
}

.modal-content .cnt-header {
    font-size: 20px;
    color: #002F5E;
    margin-bottom: 12px;
}

.modal-content .cnt-desc {
    font-family: Gotham;
    font-size: 14px;
    color: #002F5E;
}

.modal-footer {
    margin-top: 16px;
    margin-bottom: 16px;
    padding-left: 30%;
    text-align: center;
    overflow: hidden;
}

.modal-footer .modal-btn {
    text-align: center;
    float: left;
    height: 32px;
    line-height: 32px;
    font-size: 18px;
    width: 100px;
    border: 1px solid #002F5E;
    margin-right: 10px;
}
.modal-footer .modal-btn.primary{
    background:#002F5E;
    color:#ffffff;
}